home *** CD-ROM | disk | FTP | other *** search
/ Oh!X 2000 Spring / Oh!X 2000 Spring Special CD-ROM (Japan) (Part 1).7z / Oh!X 2000 Spring Special CD-ROM (Japan) (Part 1).bin / SXB / SXB / CONVIEW.H < prev    next >
C/C++ Source or Header  |  1999-08-14  |  2KB  |  63 lines

  1. #if !defined(AFX_CONVIEW_H__C5EF8480_42EC_11D3_8D34_C6324435391B__INCLUDED_)
  2. #define AFX_CONVIEW_H__C5EF8480_42EC_11D3_8D34_C6324435391B__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // ConView.h : ヘッダー ファイル
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CConView ビュー
  12.  
  13. class CConView : public CEditView
  14. {
  15. protected:
  16.     CConView();           // 動的生成に使用されるプロテクト コンストラクタ
  17.     DECLARE_DYNCREATE(CConView)
  18.  
  19. // アトリビュート
  20. public:
  21.     CSxbDoc* GetDocument();
  22.  
  23. // オペレーション
  24. public:
  25.  
  26. // オーバーライド
  27.     // ClassWizard は仮想関数のオーバーライドを生成します。
  28.     //{{AFX_VIRTUAL(CConView)
  29.     public:
  30.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  31.     protected:
  32.     virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  33.     //}}AFX_VIRTUAL
  34.  
  35. // インプリメンテーション
  36. protected:
  37.     virtual ~CConView();
  38. #ifdef _DEBUG
  39.     virtual void AssertValid() const;
  40.     virtual void Dump(CDumpContext& dc) const;
  41. #endif
  42.  
  43.     // 生成されたメッセージ マップ関数
  44. protected:
  45.     //{{AFX_MSG(CConView)
  46.     afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  47.     afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  48.     //}}AFX_MSG
  49.     DECLARE_MESSAGE_MAP()
  50. };
  51.  
  52. #ifndef _DEBUG  // SrcView.cpp ファイルがデバッグ環境の時使用されます。
  53. inline CSxbDoc* CConView::GetDocument()
  54.    { return (CSxbDoc*)m_pDocument; }
  55. #endif
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58.  
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Visual C++ は前行の直前に追加の宣言を挿入します。
  61.  
  62. #endif // !defined(AFX_CONVIEW_H__C5EF8480_42EC_11D3_8D34_C6324435391B__INCLUDED_)
  63.